Newer
Older
Simple-Multiplayer-Unity3D / Multiplayer Project / Library / PackageCache / com.unity.test-framework@1.1.33 / UnityEditor.TestRunner / CommandLineTest / SetupException.cs
  1. using System;
  2. namespace UnityEditor.TestTools.TestRunner.CommandLineTest
  3. {
  4. internal class SetupException : Exception
  5. {
  6. public ExceptionType Type { get; }
  7. public object[] Details { get; }
  8. public SetupException(ExceptionType type, params object[] details)
  9. {
  10. Type = type;
  11. Details = details;
  12. }
  13. public enum ExceptionType
  14. {
  15. ScriptCompilationFailed,
  16. PlatformNotFound,
  17. TestSettingsFileNotFound,
  18. OrderedTestListFileNotFound,
  19. }
  20. }
  21. }